home *** CD-ROM | disk | FTP | other *** search
/ 3D GFX / 3D GFX.iso / pcutils / os2 / rt / standard.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-31  |  282 b   |  19 lines

  1. /*
  2.  
  3. STANDARD.H  Custom header file that provides commonly used equates
  4.  
  5. */
  6.  
  7. #ifndef STANDARD_H
  8. #define    STANDARD_H
  9.  
  10. typedef    int BOOLEAN;
  11. #define    TRUE        1
  12. #define    FALSE        0
  13.  
  14. #define    byte        unsigned char
  15. #define    word        unsigned short
  16. #define    dword        unsigned long
  17.  
  18. #endif
  19.